home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / mpeg_play-2.1 / bzero.c < prev    next >
C/C++ Source or Header  |  1995-05-09  |  1KB  |  45 lines

  1. /*
  2.  *
  3.  * bzero.c --
  4.  *
  5.  *      Procedure that doesn't exist on a Solaris machine.  Include this
  6.  *      to avoid compilation errors.
  7.  *
  8.  */
  9.  
  10. /*
  11.  * Copyright (c) 1995 The Regents of the University of California.
  12.  * All rights reserved.
  13.  * 
  14.  * Permission to use, copy, modify, and distribute this software and its
  15.  * documentation for any purpose, without fee, and without written agreement is
  16.  * hereby granted, provided that the above copyright notice and the following
  17.  * two paragraphs appear in all copies of this software.
  18.  * 
  19.  * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
  20.  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
  21.  * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
  22.  * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  23.  * 
  24.  * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
  25.  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  26.  * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
  27.  * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
  28.  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  29.  */
  30.  
  31. #include <memory.h>
  32.  
  33. void bzero(b, length)
  34.      char *b;
  35.      int length;
  36. {
  37.   memset(b,0,length);
  38.   /* if you have problems finding memset, the following will work: 
  39.      instead of the above 
  40.   char *s_ptr;
  41.   s_ptr=b;
  42.   while(length-- > 0) *s_ptr++ = '\0';
  43.   */
  44. }
  45.